Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
This module shallow copies an object, ignoring keys depending on the filter object passed to it.
Filters can be provided as an object (truthy keys are blacklisted) or string arguments.
If you can, use
var { a, ... bc } = { a: 1, b: 2, c: 3 }
var someInput = { a: 1, b: 2, c: 3 }
// ...
var blacklist = require('blacklist')
blacklist(someInput, 'b', 'c')
// => { a: 1 }
blacklist(someInput, {
a: true, // a will not be in the result
b: false, // b will be in the result
c: 1 > 2 // false, therefore c will be in the result
})
// => { b: 2, c: 3 }
FAQs
Returns a shallow copy of an object without blacklisted properties
The npm package blacklist receives a total of 59,410 weekly downloads. As such, blacklist popularity was classified as popular.
We found that blacklist demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.